home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / May / di9805fn / StrPrj01.dpr < prev    next >
Text File  |  1998-01-13  |  765b  |  23 lines

  1. program StrPrj01;
  2. { Related to my File|New Column on AnsiStrings in Delphi Informant, May, 1998.
  3.   This project demonstrates routines in the HyperString library from
  4.   EFD Systems.  To download the free Delphi 3 *.dcu (HSTR.ZIP) needed
  5.   to run this program, visit their Web Site at www.mindspring.com/~efd.
  6.   Also, be sure to read the paper on AnsiStrings while you're there.
  7.   To report bugs or make suggestions, please E-Mail me at acmdoc@aol.com.
  8.   Thanks, and enjoy!  Alan C. Moore }
  9.  
  10. uses
  11.   Forms,
  12.   StrTst01 in 'StrTst01.pas' {Form1},
  13.   SetDelim in 'SetDelim.pas' {SetDelims};
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.Initialize;
  19.   Application.CreateForm(TForm1, Form1);
  20.   Application.CreateForm(TSetDelims, SetDelims);
  21.   Application.Run;
  22. end.
  23.